home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_1.lha / 7_1 / 7_1.c next >
Text File  |  1993-08-08  |  282b  |  16 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. lass der1: public base
  6.  
  7. ublic:
  8.    void iam() { cout << "der1\n"; }
  9. ;
  10.  
  11. lass der2: public base
  12.  
  13. ublic:
  14.    void iam() { cout << "der2\n"; }
  15. ;
  16.